home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / rindex.0 < prev    next >
Text File  |  1996-09-02  |  993b  |  27 lines

  1.  
  2. RINDEX(3)                  UNIX Programmer's Manual                  RINDEX(3)
  3.  
  4. NNAAMMEE
  5.      rriinnddeexx - locate character in string
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssttrriinngg..hh>>
  9.  
  10.      _c_h_a_r _*
  11.      rriinnddeexx(_c_o_n_s_t _c_h_a_r _*_s, _i_n_t _c)
  12.  
  13. DDEESSCCRRIIPPTTIIOONN
  14.      The rriinnddeexx() function locates the last character matching _c (converted to
  15.      a _c_h_a_r) in the null-terminated string _s. The character c is returned if
  16.      it is found; otherwise NULL is returned.  If _c is `\0', rriinnddeexx() locates
  17.      the terminating `\0'.
  18.  
  19. SSEEEE AALLSSOO
  20.      index(3),  memchr(3),  strchr(3),  strcspn(3),  strpbrk(3),  strrchr(3),
  21.      strsep(3),  strspn(3),  strstr(3),  strtok(3)
  22.  
  23. HHIISSTTOORRYY
  24.      A rriinnddeexx() function appeared in Version 6 AT&T UNIX.
  25.  
  26. BSD Experimental                April 19, 1991                               1
  27.